| Overload | Description |
|---|---|
| NBlocksDeque<T> Constructor() | Creates a new deque with a default block size |
| NBlocksDeque<T> Constructor(Int32) | Creates a new deque with the specified block size |
| NBlocksDeque<T> Constructor(INIterator<T>) | Creates a new deque, which is initialized with the remaining items of the specified iterator. |
| NBlocksDeque<T> Constructor(INSet<T>) | Creates a new deque, which is initialized with the items of the specified set. |
| NBlocksDeque<T> Constructor(Int32,INIterator<T>) | Creates a new deque, with the specified block size and initialized with the remaining items of the specified iterator. |
| NBlocksDeque<T> Constructor(Int32,INSet<T>) | Creates a new deque, with the specified block size and initialized with the items of the specified set. |